home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / CHIPCD_02_2002.iso / Internet / Macromedia ColdFusion Server 5 / coldfusion-50-win-us.exe / data1.cab / Examples / CFDOCS / exampleapps / cf5examples / Application.cfm next >
Encoding:
ColdFusion Markup Language  |  2001-06-13  |  771 b   |  23 lines

  1. <cfapplication name="CFExamples"
  2.                clientmanagement="Yes"
  3.                sessionmanagement="Yes"
  4.                setclientcookies="Yes"
  5.                sessiontimeout="#CreateTimeSpan(0,1,30,0)#"
  6.                applicationtimeout="#CreateTimeSpan(0,1,30,0)#">
  7.  
  8. <cflock scope="APPLICATION" throwontimeout="No" timeout="10">   
  9.     <!--- Set Application Variables --->
  10.     <cfset Application.ExamplesDSN                 = "CFX">
  11.     <cfset Application.SnippetsDSN                 = "cfsnippets">
  12. </cflock>
  13.  
  14. <!--- Examples are only available for localhost --->
  15.  
  16. <cfparam name = "CGI.REMOTE_ADDR" default="">
  17.  
  18. <cfif CGI.REMOTE_ADDR is '' OR NOT (CGI.REMOTE_ADDR IS 'localhost' OR CGI.REMOTE_ADDR IS '127.0.0.1')>
  19.     <cfinclude template="/cfdocs/sorry.htm">
  20.     <cfabort>
  21. </cfif>
  22.  
  23.